home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjftp.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  592 b   |  25 lines

  1. // Design Time Java Socket implementation. (HPP)
  2.  
  3. #ifndef _DTJFTP_HPP
  4. #define _DTJFTP_HPP
  5.  
  6. #include "dtjobjct.hpp"
  7. #include "dtjinet.hpp"
  8.                       
  9. class METAEXPORTCLASSDEF DTJFTP : public DTJInternet
  10. {
  11.     public:
  12.         DTJFTP( const MetaObject * pMetaObj );
  13.         virtual ~DTJFTP();
  14.         
  15.         
  16.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  17.                    ostream& src,
  18.                    MMCodeGenerationParms& pGenParms );
  19. };
  20.  
  21. // needed for mdreader
  22. typedef DTJFTP DTpowersoft__dot__powerj__dot__net__dot__FTP__dot__102;
  23.  
  24. #endif // _DTJFTP_HPP
  25.